home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / northc / example2.lzh / top / makefile.old < prev    next >
Makefile  |  1990-08-30  |  228b  |  18 lines

  1. #
  2. # Makefile for the optimizer
  3. #
  4.  
  5. OBJ =    main.o io.o util.o sym.o func.o branch.o inst.o opcodes.o \
  6.     peep.o health.o data.o
  7.  
  8. CFLAGS = -O
  9.  
  10. xtop.ttp : $(OBJ)
  11.     cc $(OBJ) -o xtop.ttp
  12.  
  13. clean:
  14.     $(RM) *.o
  15.  
  16. clobber:
  17.     $(RM) *.o xtop.ttp
  18.